@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=DM+Sans:wght@400;500&display=swap');

.wp-section,
.wp-section *,
.wp-section *::before,
.wp-section *::after{ box-sizing:border-box; }

.wp-section{
    display:flex;
    width:100%;
    height:660px;
    background:#132356;
}

.wp-visual{
    position:relative;
    flex:0 0 48%;
    max-width:48%;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#0f1c45;

    border-right:3px solid #2b7fe0;
}

.wp-visual__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        105deg,
        rgba(15,28,69,.88) 0%,
        rgba(15,28,69,.55) 38%,
        rgba(15,28,69,.10) 72%,
        rgba(15,28,69,0) 100%
    );
}

.wp-visual__inner{
    position:relative;
    z-index:2;
    padding:46px 40px;
    max-width:330px;
}

.wp-visual__title{
    margin:0 0 18px;
    font-family:'Poppins',sans-serif;
    font-size:38px;
    font-weight:700;
    line-height:1.18;
    color:#fff;
}

.wp-visual__desc{
    margin:0;
    font-family:'DM Sans',sans-serif;
    font-size:18px;
    font-weight: 400;
    line-height:1.75;
    color:rgba(255,255,255,.88);
    max-width:200px;
}

.wp-dots{
    position:absolute;
    left:44px;
    bottom:52px;
    z-index:2;
    display:flex;
    gap:8px;
}

.wp-dots span{
    display:block;
    width:9px;
    height:9px;
    border-radius:50%;
    background:rgba(255,255,255,.85);
}

.wp-list{
    flex:1 1 auto;
    min-width:0;
    padding:60px 70px 60px 50px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    overflow: hidden;
}

.wp-item{ border-top:1px solid rgba(255,255,255,.16); }

.wp-item:last-child{ border-bottom:1px solid rgba(255,255,255,.16); }

.wp-item__head{
    width:100%;
    display:flex;
    align-items:center;
    gap:28px;
    padding:22px 0;
    border:none;
    background:transparent;
    cursor:pointer;
    text-align:left;
}

.wp-item__head:focus-visible{
    outline:2px solid #f5903e;
    outline-offset:3px;
}

.wp-item__num{
    flex-shrink:0;
    font-family:'DM Sans',sans-serif;
    font-size:18px;
    font-weight:400;
    color:rgba(255,255,255,.5);
}

.wp-item__title{
    flex:1 1 auto;
    font-family:'Poppins',sans-serif;
    font-size:28px;
    font-weight:600;
    line-height:1.35;
    color:#fff;
    transition:color .3s ease;
}

.wp-item__head:hover .wp-item__title{ color:#f5903e; }

.wp-item__icon{
    position:relative;
    flex-shrink:0;
    width:20px;
    height:20px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.4);
    transition:background .3s ease, border-color .3s ease;
}

.wp-item__icon::before,
.wp-item__icon::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    background:rgba(255,255,255,.75);
    transform:translate(-50%,-50%);
    transition:opacity .3s ease;
}

.wp-item__icon::before{ width:8px; height:1px; }

.wp-item__icon::after{ width:1px; height:8px; opacity:0; }

.wp-item.active .wp-item__icon{
    background:#f5903e;
    border-color:#f5903e;
}

.wp-item.active .wp-item__icon::before,
.wp-item.active .wp-item__icon::after{ opacity:0; }

.wp-item__panel{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s cubic-bezier(.22,1,.36,1);
}

.wp-item.active .wp-item__panel{ max-height:260px; }

.wp-item__panel p{
    margin:0;
    padding:0 60px 24px 39px;
    font-family:'DM Sans',sans-serif;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.72);
    opacity:0;
    transform:translateY(-6px);
    transition:opacity .35s ease .05s, transform .35s ease .05s;
}

.wp-item.active .wp-item__panel p{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1200px){
.wp-list{ padding:50px 40px 50px 34px; }
.wp-visual__inner{ padding:38px 30px; }
.wp-visual__title{ font-size:28px; }
.wp-item__head{ gap:20px; }
.wp-item__title{ font-size:15px; }
.wp-item__panel p{ padding:0 30px 22px 34px; }
}

@media(max-width:900px){

.wp-section{
    flex-direction:column;
    height:auto;
}


/* IMAGE BLOCK */

.wp-visual{
    flex:none;
    max-width:100%;
    width:100%;

    min-height:340px;

    display:flex;
    align-items:flex-end;

    border-right:none;
}

/* .wp-visual__overlay{
    background:linear-gradient(
        to bottom,
        rgba(15,28,69,.15) 0%,
        rgba(15,28,69,.55) 45%,
        rgba(15,28,69,.92) 100%
    );
} */

.wp-visual__inner{
    padding:0 22px 44px;
    max-width:100%;
    width:100%;
}

.wp-visual__title{
    margin:0 0 12px;
    font-size:26px;
    line-height:1.2;
}

.wp-visual__desc{
    max-width:100%;
    font-size:14px;
    line-height:1.65;
}

.wp-dots{
    left:22px;
    bottom:20px;
}


/* LIST */

.wp-list{
    padding:0;
    overflow:visible;
}

.wp-item__head{
    gap:16px;
    padding:18px 22px;
}

.wp-item__num{
    font-size:13px;
}

.wp-item__title{
    font-size:16px;
    line-height:1.3;
}

.wp-item__panel p{
    padding:0 22px 20px 51px;
    font-size:14px;
    line-height:1.7;
}

.wp-item.active .wp-item__panel{
    max-height:400px;
}

}


@media(max-width:560px){

.wp-visual{
    min-height:300px;
}

.wp-visual__inner{
    padding:0 20px 40px;
}

.wp-visual__title{
    font-size:23px;
}

.wp-visual__desc{
    font-size:16px;
}

.wp-dots{
    left:20px;
}

.wp-item__head{
    gap:14px;
    padding:16px 20px;
}

.wp-item__title{
    font-size:15px;
}

.wp-item__panel p{
    padding:0 20px 18px 47px;
    font-size:16px;
}

}
@media(prefers-reduced-motion:reduce){
.wp-item__panel,
.wp-item__panel p,
.wp-item__icon,
.wp-item__title{ transition:none; }
}